home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / ovrlygm.com / STARTUP.C < prev    next >
Encoding:
Text File  |  1988-12-07  |  352 b   |  16 lines

  1.  
  2. /*
  3.                                    Startup.C
  4.      Compile this program to an .OBJ file, then link them using the
  5.      LINK_MC.BAT file for MicroSoft C or LINK_TC.BAT for Turbo C.
  6.      Note: Compile using the medium memory model (or change the
  7.      batch files to use another model).  
  8. */
  9.  
  10. void extern test();
  11.  
  12. main()
  13. {
  14.    test();
  15. }
  16.